home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / misc / xref_v1.1.lha / XRef / Tools / lib / SMakeFile < prev    next >
Encoding:
Makefile  |  1994-11-03  |  609 b   |  30 lines

  1. #
  2. # Makefile for xrefsupport.lib
  3. #
  4. # by Stefan Ruppert (C) Copyright 1994
  5. #
  6.  
  7. OBJS     = insertbyname.o checksuffix.o checkentrytype.o getfiletype.o \
  8.            saveicon.o showerror.o gauge.o writebuffer.o mysprintf.o \
  9.            insertbyiname.o getamigaguidenode.o scanpattern.o scanwindow.o \
  10.            calctextwidth.o convertsuffix.o timecalc.o getmaxdigitwidth.o
  11.  
  12. LIB      = xrefsupport.lib
  13.  
  14. CC       = sc
  15. RM       = delete quiet
  16.  
  17. CFLAGS   = NOSTKCHK OPT OPTTIME GST=sc:def.m OBJLIB $(LIB)
  18.  
  19. all: $(OBJS)
  20.  
  21. .c.o:
  22.    $(CC) $(CFLAGS) $*.c
  23.  
  24. .asm.o:
  25.    $(CC) $(CFLAGS) ASM $*.asm
  26.  
  27. release:
  28.    -$(RM) $(OBJS)
  29.  
  30.